home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / opengl / utilities / isfast / libisfast / Makefile < prev   
Encoding:
Makefile  |  1994-08-02  |  289 b   |  19 lines

  1. TARGET = libisfast.a
  2.  
  3. CFLAGS = -O -I../libtk -I../libpdb
  4.  
  5. OBJECTS = \
  6.     isfast.o
  7.  
  8. $(TARGET): $(OBJECTS)
  9.     rm -f $@
  10.     $(AR) crl $@ $(OBJECTS)
  11.  
  12. isfast.o: isfast.h ../libtk/tk.h ../libpdb/pdb.h
  13.  
  14. clean:
  15.     -rm -rf *.[ou] a.out core lex.yy.[co] y.tab.[cho] _force
  16.  
  17. clobber: clean
  18.     -rm -rf $(TARGET)
  19.